Derivative-free optimization (sometimes referred to as blackbox optimization) is a discipline in mathematical optimization that does not use derivative information in the classical sense to find optimal solutions: Sometimes information about the derivative of the objective function f is unavailable, unreliable or impractical to obtain. For example, f might be non-smooth, or time-consuming to evaluate, or in some way noisy, so that methods that rely on derivatives or approximate them via finite differences are of little use. The problem to find optimal points in such situations is referred to as derivative-free optimization, algorithms that do not use derivatives or finite differences are called derivative-free algorithms.
Introduction
The problem to be solved is to numerically optimize an objective function
f
:
A
→
R
{\displaystyle f\colon A\to \mathbb {R} }
for some set
A
{\displaystyle A}
(usually
A
⊂
R
n
{\displaystyle A\subset \mathbb {R} ^{n}}
), i.e. find
x
0
∈
A
{\displaystyle x_{0}\in A}
such that without loss of generality
f
(
x
0
)
≤
f
(
x
)
{\displaystyle f(x_{0})\leq f(x)}
for all
x
∈
A
{\displaystyle x\in A}
.
When applicable, a common approach is to iteratively improve a parameter guess by local hill-climbing in the objective function landscape. Derivative-based algorithms use derivative information of
f
{\displaystyle f}
to find a good search direction, since for example the gradient gives the direction of steepest ascent. Derivative-based optimization is efficient at finding local optima for continuous-domain smooth single-modal problems. However, they can have problems when e.g.
A
{\displaystyle A}
is disconnected, or (mixed-)integer, or when
f
{\displaystyle f}
is expensive to evaluate, or is non-smooth, or noisy, so that (numeric approximations of) derivatives do not provide useful information. A slightly different problem is when
f
{\displaystyle f}
is multi-modal, in which case local derivative-based methods only give local optima, but might miss the global one.
In derivative-free optimization, various methods are employed to address these challenges using only function values of
f
{\displaystyle f}
, but no derivatives. Some of these methods can be proved to discover optima, but some are rather metaheuristic since the problems are in general more difficult to solve compared to convex optimization. For these, the ambition is rather to efficiently find "good" parameter values which can be near-optimal given enough resources, but optimality guarantees can typically not be given. One should keep in mind that the challenges are diverse, so that one can usually not use one algorithm for all kinds of problems.
Algorithms
Notable derivative-free optimization algorithms include:
Bayesian optimization
Coordinate descent and adaptive coordinate descent
Differential evolution, including multi-objective variants
DONE
Evolution strategies, Natural evolution strategies (CMA-ES, xNES, SNES)
Genetic algorithms
MCS algorithm
Nelder-Mead method
Particle swarm optimization
Pattern search
Powell's methods based on interpolation, e.g., COBYLA (PRIMA)
Random search (including Luus–Jaakola)
Simulated annealing
Stochastic optimization
Subgradient method
various model-based algorithms like BOBYQA and ORBIT
Benchmarks
There exist benchmarks for blackbox optimization algorithms, see e.g. the bbob-biobj tests.
See also
Mathematical optimization
References
External links
Audet, Charles; Kokkolaras, Michael (2016). "Blackbox and derivative-free optimization: theory, algorithms and applications". Optimization and Engineering. 17: 1–2. doi:10.1007/s11081-016-9307-4.